home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zcharout.c < prev    next >
C/C++ Source or Header  |  1996-05-15  |  6KB  |  235 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zcharout.c */
  20. /* Common code for outline (Type 1 / 4 / 42) fonts */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gschar.h"
  25. #include "gxdevice.h"        /* for gxfont.h */
  26. #include "gxfont.h"
  27. #include "dstack.h"        /* only for systemdict */
  28. #include "estack.h"
  29. #include "ichar.h"
  30. #include "icharout.h"
  31. #include "idict.h"
  32. #include "ifont.h"
  33. #include "igstate.h"
  34. #include "store.h"
  35.  
  36. /* Imported operators */
  37. int zsetcachedevice(P1(os_ptr));    /* zchar.c */
  38. int zsetcachedevice2(P1(os_ptr));    /* zchar.c */
  39.  
  40. /*
  41.  * Execute an outline defined by a PostScript procedure.
  42.  * The top elements of the stack are:
  43.  *    <font> <code|name> <name> <outline_id>
  44.  */
  45. int
  46. zchar_exec_char_proc(os_ptr op)
  47. {    /*
  48.      * The definition is a PostScript procedure.  Execute
  49.      *    <code|name> proc
  50.      * within a systemdict begin/end and a font begin/end.
  51.      */
  52.     es_ptr ep;
  53.  
  54.     check_estack(5);
  55.     ep = esp += 5;
  56.     make_op_estack(ep - 4, zend);
  57.     make_op_estack(ep - 3, zend);
  58.     ref_assign(ep - 2, op);
  59.     make_op_estack(ep - 1, zbegin);
  60.     make_op_estack(ep, zbegin);
  61.     ref_assign(op - 1, systemdict);
  62.     { ref rfont;
  63.       ref_assign(&rfont, op - 3);
  64.       ref_assign(op - 3, op - 2);
  65.       ref_assign(op - 2, &rfont);
  66.     }
  67.     pop(1);
  68.     return o_push_estack;
  69. }
  70.  
  71. /*
  72.  * Get the metrics for a character from the Metrics dictionary of a base
  73.  * font.  If present, store the l.s.b. in psbw[0,1] and the width in
  74.  * psbw[2,3].
  75.  */
  76. int /*metrics_present*/
  77. zchar_get_metrics(const gs_font_base *pbfont, const ref *pcnref,
  78.   float psbw[4])
  79. {    const ref *pfdict = &pfont_data(pbfont)->dict;
  80.     ref *pmdict;
  81.  
  82.     if ( dict_find_string(pfdict, "Metrics", &pmdict) > 0 )
  83.     {    ref *pmvalue;
  84.  
  85.         check_type_only(*pmdict, t_dictionary);
  86.         check_dict_read(*pmdict);
  87.         if ( dict_find(pmdict, pcnref, &pmvalue) > 0 )
  88.         {    if ( num_params(pmvalue, 1, psbw + 2) >= 0 )
  89.             {        /* <wx> only */
  90.                 psbw[3] = 0;
  91.                 return metricsWidthOnly;
  92.             }
  93.             else
  94.             { int code;
  95.               check_read_type_only(*pmvalue, t_array);
  96.               switch ( r_size(pmvalue) )
  97.               {
  98.               case 2:    /* [<sbx> <wx>] */
  99.                 code = num_params(pmvalue->value.refs + 1,
  100.                           2, psbw);
  101.                 psbw[2] = psbw[1];
  102.                 psbw[1] = psbw[3] = 0;
  103.                 break;
  104.               case 4:    /* [<sbx> <sby> <wx> <wy>] */
  105.                 code = num_params(pmvalue->value.refs + 3,
  106.                           4, psbw);
  107.                 break;
  108.               default:
  109.                 return_error(e_rangecheck);
  110.               }
  111.               if ( code < 0 )
  112.                 return code;
  113.               return metricsSideBearingAndWidth;
  114.             }
  115.         }
  116.     }
  117.     return metricsNone;
  118. }
  119.  
  120. /*
  121.  * Consult Metrics2 and CDevProc, and call setcachedevice[2].  Return
  122.  * o_push_estack if we had to call a CDevProc, or if we are skipping the
  123.  * rendering process (only getting the metrics).
  124.  */
  125. int
  126. zchar_set_cache(os_ptr op, const gs_font_base *pbfont, const ref *pcnref,
  127.   const float psb[2], const float pwidth[2], const gs_rect *pbbox,
  128.   int (*cont_fill)(P1(os_ptr)), int (*cont_stroke)(P1(os_ptr)))
  129. {    const ref *pfdict = &pfont_data(pbfont)->dict;
  130.     ref *pmdict;
  131.     ref *pcdevproc;
  132.     int have_cdevproc;
  133.     ref rpop;
  134.     bool metrics2 = false;
  135.     int (*cont)(P1(os_ptr));
  136.     float w2[10];
  137.     gs_show_enum *penum = op_show_find();
  138.  
  139.     w2[0] = pwidth[0], w2[1] = pwidth[1];
  140.  
  141.     /* Adjust the bounding box for stroking if needed. */
  142.  
  143.     w2[2] = pbbox->p.x, w2[3] = pbbox->p.y;
  144.     w2[4] = pbbox->q.x, w2[5] = pbbox->q.y;
  145.     if ( pbfont->PaintType == 0 )
  146.         cont = cont_fill;
  147.     else
  148.     {    double expand = max(1.415, gs_currentmiterlimit(igs)) *
  149.           gs_currentlinewidth(igs) / 2;
  150.  
  151.         w2[2] -= expand, w2[3] -= expand;
  152.         w2[4] += expand, w2[5] += expand;
  153.         cont = cont_stroke;
  154.     }
  155.  
  156.     /* Check for Metrics2. */
  157.  
  158.     if ( dict_find_string(pfdict, "Metrics2", &pmdict) > 0 )
  159.     {    ref *pmvalue;
  160.         check_type_only(*pmdict, t_dictionary);
  161.         check_dict_read(*pmdict);
  162.         if ( dict_find(pmdict, pcnref, &pmvalue) > 0 )
  163.         {    check_read_type_only(*pmvalue, t_array);
  164.             if ( r_size(pmvalue) == 4 )
  165.             {    int code = num_params(pmvalue->value.refs + 3,
  166.                               4, w2 + 6);
  167.                 if ( code < 0 )
  168.                   return code;
  169.                 metrics2 = true;
  170.             }
  171.         }
  172.     }
  173.  
  174.     /* Check for CDevProc or "short-circuiting". */
  175.  
  176.     have_cdevproc = dict_find_string(pfdict, "CDevProc", &pcdevproc) > 0;
  177.     if ( have_cdevproc || gs_show_width_only(penum) )
  178.     {    int i;
  179.         int (*zsetc)(P1(os_ptr));
  180.         int nparams;
  181.  
  182.         if ( have_cdevproc )
  183.           { check_proc_only(*pcdevproc);
  184.             zsetc = zsetcachedevice2;
  185.             if ( !metrics2 )
  186.               { w2[6] = w2[0], w2[7] = w2[1];
  187.             w2[8] = w2[9] = 0;
  188.               }
  189.             nparams = 10;
  190.           }
  191.         else
  192.           { make_oper(&rpop, 0, zpop);
  193.             pcdevproc = &rpop;
  194.             if ( metrics2 )
  195.               zsetc = zsetcachedevice2, nparams = 10;
  196.             else
  197.               zsetc = zsetcachedevice, nparams = 6;
  198.           }
  199.         check_estack(3);
  200.         /* Push the l.s.b. for .type1addpath if necessary. */
  201.         if ( psb != 0 )
  202.           { push(nparams + 3);
  203.             make_real(op - (nparams + 2), psb[0]);
  204.             make_real(op - (nparams + 1), psb[1]);
  205.           }
  206.         else
  207.           { push(nparams + 1);
  208.           }
  209.         for ( i = 0; i < nparams; ++i )
  210.           make_real(op - nparams + i, w2[i]);
  211.         ref_assign(op, pcnref);
  212.         push_op_estack(cont);
  213.         push_op_estack(zsetc);
  214.         ++esp;
  215.         ref_assign(esp, pcdevproc);
  216.         return o_push_estack;
  217.     }
  218.     { int code =
  219.         (metrics2 ? gs_setcachedevice2(penum, igs, w2) :
  220.          gs_setcachedevice(penum, igs, w2));
  221.       if ( code < 0 )
  222.         return code;
  223.     }
  224.  
  225.     /* No metrics modification, do the stroke or fill now. */
  226.  
  227.     /* Push the l.s.b. for .type1addpath if necessary. */
  228.     if ( psb != 0 )
  229.       { push(2);
  230.         make_real(op - 1, psb[0]);
  231.         make_real(op, psb[1]);
  232.       }
  233.     return cont(op);
  234. }
  235.